home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6984 / 6984.xpi / chrome / lazarus.jar / content / uninstall.xul < prev    next >
Extensible Markup Language  |  2009-11-24  |  1KB  |  32 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <!DOCTYPE prefwindow SYSTEM "chrome://lazarus/locale/uninstall.dtd">
  4. <prefwindow id="lazarusUninstallOptions" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  5.     title="&window.title;" onload="init()"
  6.     buttons="accept">
  7.     <prefpane id="options">
  8.     <preferences>
  9.       <preference id="extensions.lazarus.uninstall.removeUserSettings" name="extensions.lazarus.uninstall.removeUserSettings" type="bool"/>
  10.       <preference id="extensions.lazarus.uninstall.removeSavedForms" name="extensions.lazarus.uninstall.removeSavedForms" type="bool"/>
  11.     </preferences>
  12.     
  13.     <vbox>
  14.         <description>&uninstallInfo;</description>
  15.     </vbox>
  16.     
  17.     <vbox>
  18.         <checkbox id="removeUserSettings" label="&removeUserSettings;" preference="extensions.lazarus.uninstall.removeUserSettings"/>
  19.         <checkbox id="removeSavedForms" preference="extensions.lazarus.uninstall.removeSavedForms" label="&removeSavedForms;" oncommand="toggleDBDescription()" />
  20.     </vbox>
  21.     
  22.     <vbox width="300">
  23.         <description flex="1" id="databaseDescription" minheight="100">&unable.to.remove.db;</description>
  24.     </vbox>
  25.     </prefpane>
  26.     
  27.     <script type="text/javascript" src="common.js" />
  28.     <script type="text/javascript" src="uninstall.js" />
  29. </prefwindow>
  30.  
  31.  
  32.